home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 8: LINUX Games / Linux Cubed Series 8 - LINUX Games.iso / games / sail.tar / sail / Makefile < prev    next >
Makefile  |  1992-10-09  |  1KB  |  41 lines

  1. #
  2. # Copyright (c) 1987 Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that this notice is preserved and that due credit is given
  7. # to the University of California at Berkeley. The name of the University
  8. # may not be used to endorse or promote products derived from this
  9. # software without specific prior written permission. This software
  10. # is provided ``as is'' without express or implied warranty.
  11. #
  12. #    @(#)Makefile    5.6 (Berkeley) 3/9/88
  13. #
  14. CFLAGS=    -O
  15. LIBS=    -lcurses -ltermcap
  16. SRCS=    main.c pl_main.c pl_1.c pl_2.c pl_3.c pl_4.c pl_5.c pl_6.c pl_7.c \
  17.     dr_main.c dr_1.c dr_2.c dr_3.c dr_4.c dr_5.c lo_main.c \
  18.     assorted.c game.c globals.c misc.c parties.c sync.c version.c
  19. OBJS=    main.o pl_main.o pl_1.o pl_2.o pl_3.o pl_4.o pl_5.o pl_6.o pl_7.o \
  20.     dr_main.o dr_1.o dr_2.o dr_3.o dr_4.o dr_5.o lo_main.o \
  21.     assorted.o game.o globals.o misc.o parties.o sync.o version.o
  22.  
  23. all: sail
  24.  
  25. sail: ${OBJS} 
  26.     ${CC} -o $@ ${OBJS} ${LIBS}
  27.  
  28. clean: rm -f ${OBJS} core sail
  29.  
  30. depend: mkdep ${CFLAGS} ${SRCS}
  31.  
  32. install: 
  33.     install -c -o games -g bin -m 600 /dev/null ${DESTDIR}/usr/games/lib/saillog
  34.     install -s -o games -g bin -m 4700 sail ${DESTDIR}/usr/games/hide
  35.     (cd ${DESTDIR}/usr/games; rm -f sail; ln -s dm sail; chown games.bin sail)
  36.  
  37. lint: lint ${CFLAGS} ${SRCS}
  38.  
  39. tags: ctags ${SRCS}
  40.  
  41.